glade: Add some more private widget types
authorMatthias Clasen <mclasen@redhat.com>
Tue, 1 Sep 2015 04:59:27 +0000 (00:59 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Tue, 1 Sep 2015 04:59:27 +0000 (00:59 -0400)
Add GtkColorEditor and GtkPlacesView to this list, on the assumption
that all private widgets should be listed here.

gtk/gtkgladecatalog.c

index e4e3dd0f2bd213da4821ca6b55ef36e23a90fc2a..a2dcfc18f57e21d5ef6518a58f3d9b9fa1305678 100644 (file)
 #include "config.h"
 
 #include "gtkpathbar.h"
+#include "gtkplacesviewprivate.h"
 #include "gtkcolorswatchprivate.h"
 #include "gtkcolorplaneprivate.h"
 #include "gtkcolorscaleprivate.h"
+#include "gtkcoloreditorprivate.h"
 
 #ifdef G_OS_UNIX
 #  include "gtkprinteroptionwidget.h"
@@ -42,9 +44,11 @@ void
 gtk_glade_catalog_init (const gchar *catalog_name)
 {
   g_type_ensure (GTK_TYPE_PATH_BAR);
+  g_type_ensure (GTK_TYPE_PLACES_VIEW);
   g_type_ensure (GTK_TYPE_COLOR_SWATCH);
   g_type_ensure (GTK_TYPE_COLOR_PLANE);
   g_type_ensure (GTK_TYPE_COLOR_SCALE);
+  g_type_ensure (GTK_TYPE_COLOR_EDITOR);
 
 #ifdef G_OS_UNIX
   g_type_ensure (GTK_TYPE_PRINTER_OPTION_WIDGET);